TriedDequeue Event

MNG Profiler

MNG.Direct Documentation


TriedDequeue Event
Event that occurs whenever the user attempts to dequeue an item, regardless if it happened successfully or not.
Syntax
'Declaration
 
Public Event TriedDequeue As SignalConcurrentQueueHandler
'Usage
 
Dim instance As SignalConcurrentQueue(Of T)
Dim handler As SignalConcurrentQueueHandler
 
AddHandler instance.TriedDequeue, handler
public event SignalConcurrentQueueHandler TriedDequeue
public:
event SignalConcurrentQueueHandler^ TriedDequeue
Event Data

The event handler receives an argument of type SignalConcurrentQueueEventArgs containing data related to this event. The following SignalConcurrentQueueEventArgs properties provide information specific to this event.

PropertyDescription
Object that has been enqueued or dequeued.  
Indicate whether the operation the event was raised for succeeded or not.  
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also